home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Columbia Kermit
/
kermit.zip
/
newsgroups
/
misc.20010306-20010921
/
000292_fdc@watsun.cc.columbia.edu_Tue Aug 7 16:14:42 EDT 2001.msg
< prev
next >
Wrap
Text File
|
2020-01-01
|
3KB
|
62 lines
Article: 12647 of comp.protocols.kermit.misc
Path: newsmaster.cc.columbia.edu!watsun.cc.columbia.edu!fdc
From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
Newsgroups: comp.protocols.kermit.misc
Subject: Re: Init settings
Date: 7 Aug 2001 20:14:32 GMT
Organization: Columbia University
Lines: 45
Message-ID: <9kpi78$as7$1@newsmaster.cc.columbia.edu>
References: <tn0hlqg5v5p9a2@corp.supernews.com>
NNTP-Posting-Host: watsun.cc.columbia.edu
X-Trace: newsmaster.cc.columbia.edu 997215272 11143 128.59.39.2 (7 Aug 2001 20:14:32 GMT)
X-Complaints-To: postmaster@columbia.edu
NNTP-Posting-Date: 7 Aug 2001 20:14:32 GMT
Xref: newsmaster.cc.columbia.edu comp.protocols.kermit.misc:12647
In article <tn0hlqg5v5p9a2@corp.supernews.com>,
Steve <steve@baus-systems.com> wrote:
: What are my options for specifying modem settings in an ini file?
:
: I have a Zoom external modem I would like to setup with AT commands when I
: start k95. If this is best accomplished in a global k95 init file I need to
: make sure they are specific to the Zoom modem as I may be using other modems
: in the future. I have created another .ini file that I am calling when I
: startup so if it is better to include it there, that is an option.
:
Start K95 and give the following commands:
set modem type zoom
show modem
The SET MODEM TYPE command loads the Zoom entry from the Kermit database.
The SHOW MODEM command shows the commands that Kermit 95 will use with the
modem. If you want to change any of them, you can use SET MODEM COMMAND
commands to do so.
If you want to customize the commands for certain kinds of modems, perhaps
the most convenient way is to define a macro that selects the modem and then
customizes the commands, e.g.:
define zoom {
set modem type zoom
set modem command init ATblahblahblah\13
}
Put this definition in your K95CUSTOM.INI file and then whenever you want
to use your Zoom modem, type "zoom" instead of "set modem type zoom".
: What do I need to do to use a USB modem, set the port and the specific
: settings like above?
:
It depends on how it is defined in Windows. As you know, a Windows modem
can look like a serial port with a modem attached, or it can be a "Windows
Modem" device that you refer to directly. In the latter case you will find
it in the Modems folder of the Windows Control Panel with a long name,
like "Zoom Data/Fax Modem 56K".
The distinction between DOS-style COM-port-plus-modem and Windows modem
devices is explained in the K95 manual.
- Frank